home *** CD-ROM | disk | FTP | other *** search
- /*************************************************************************************************
- *
- *
- * ObjectMacZapp -- a standard Mac OOP application template
- *
- *
- *
- * ZStartUp.cpp -- start-up code (main)
- *
- *
- *
- *
- *
- * © 1996, Graham Cox
- *
- *
- *
- *
- *************************************************************************************************/
-
- #include "MacZoop.h"
-
-
- void main();
-
-
- /*
-
- The main routine for MacZoop simply creates the application object and tells it to run.
-
- */
-
-
-
-
- void main()
- {
- gApplication = new ZApplication(); // make the application object
-
- RunApplication(); // run it
- }